home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 March / macformat-022.iso / Shareware City / Developers / NeoIntroTCL3.0 folder / TCL / NeoDemo / Includes / CNDPicture.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-01-03  |  517 b   |  22 lines  |  [TEXT/KAHL]

  1. /****
  2.  * CNDPicture.h
  3.  *
  4.  *  Copyright © 1992 NeoLogic Systems.  All rights reserved.
  5.  *
  6.  ****/
  7.  
  8. #pragma once
  9. #include <CPicture.h>
  10.  
  11. class CNDPicture: public CPicture
  12. {
  13. public:
  14.     void            INDPicture(short aID, CView *anEnclosure, CBureaucrat *aSupervisor, short aWidth,
  15.                         short aHeight, short aHEncl, short aVEncl, SizingOption aHSizing, SizingOption aVSizing);
  16.     virtual void    DoClick(Point aHitPt, short aModifierKeys, long aWhen);
  17.     Boolean            isZoomed(void);
  18.     void            Zoom(Boolean aOut);
  19.  
  20. protected:
  21.     short    fState;
  22. };